home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / PROTO212.ARJ / SOURCE2.C < prev    next >
C/C++ Source or Header  |  1991-03-23  |  378b  |  25 lines

  1. #include <string.h>
  2. #include <other.h>
  3. /*
  4.     Perform one transaction interactivly.
  5.  
  6.     The function returns only when transaction is secure.
  7. */
  8. int xsys_transact (void)
  9. {
  10.     ....
  11. }
  12.  
  13. /*
  14.     Undo the last transaction.
  15.  
  16.     This function must be called only in this and this and this
  17.     situation.
  18.  
  19.     Return -1 if transaction can't be undone.
  20. */
  21. int xsys_undo (void)
  22. {
  23. }
  24.  
  25.